home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 14 / 3 / DISK1430.ZIP / SRC / TUNE.TEM < prev   
Text File  |  1988-05-04  |  1KB  |  30 lines

  1. /***************************************************************************
  2.  * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE *
  3.  * is provided to you without charge, and with no warranty.  You may give  *
  4.  * away copies of JOVE, including sources, provided that this notice is    *
  5.  * included in all the files.                                              *
  6.  ***************************************************************************/
  7.  
  8. #define NOEXTERNS
  9.  
  10. #include "tune.h"
  11.  
  12. char    *d_tempfile = "joveXXXXXX",    /* buffer lines go here */
  13.     *p_tempfile = "jrecXXXXXX",    /* line pointers go here */
  14.     *Recover = "LIBDIR/recover",
  15.     *CmdDb = "LIBDIR/cmds.doc",
  16.         /* copy of "cmds.doc" lives in the doc subdirectory */
  17.  
  18.     *Joverc = "LIBDIR/.joverc",
  19.  
  20. #ifdef PIPEPROCS
  21.     *Portsrv = "LIBDIR/portsrv",
  22. #endif
  23.  
  24. /* these are variables that can be set with the set command, so they are
  25.    allocated more memory than they actually need for the defaults */
  26.  
  27.     TmpFilePath[128] = "TMPDIR",
  28.     Shell[128] = "SHELL",
  29.     ShFlags[16] = "-c";
  30.